Pog Scripts


A script file is a single text file written in the Pog scripting language. It will consist of a group of  functions. Normally these functions are related to another, though this doesn't have to be the case.

A script might define the behaviour of a game object, such as a spaceship, or it could be a collection of utilities for use in other scripts, or even the entire plot structure of a game.

Functions in scripts can be provided for use by other scripts. This means that complex scripts can be created from simpler component scripts, which makes the Pog scripting language very powerful.

Each Pog script follows a standard format, and must be compiled into a package before use.

A Pog script has the extension .pog, e.g. My_Script.pog

Introduction | Next